翻訳と辞書
Words near each other
・ Interactive Multimedia Association
・ Interactive Museum EPM
・ Interactive Museum of Economics
・ Interactive novel
・ Interactive One
・ Interactive Pager
・ Interactive patient care
・ Interactive Picture Systems
・ Interactive planning
・ Interactive programming
・ Interactive proof
・ Interactive proof system
・ Interactive Public Docket
・ Interactive representation
・ Interactive Robots and Media Lab
Interactive Ruby Shell
・ Interactive Scenario Builder
・ Interactive Science
・ Interactive skeleton-driven simulation
・ Interactive Software Federation of Europe
・ Interactive specialization
・ Interactive storybook
・ Interactive storytelling
・ Interactive Support Group
・ Interactive Systems Corporation
・ Interactive systems engineering
・ Interactive television
・ Interactive Television Entertainment
・ Interactive television standards
・ Interactive theatre


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Interactive Ruby Shell : ウィキペディア英語版
Interactive Ruby Shell

Interactive Ruby Shell (IRB or irb) is a REPL for programming in the object-oriented scripting language Ruby. The abbreviation irb comes from the fact that the filename extension for Ruby is ".rb", although interactive Ruby files do not have an extension of ".irb". The program is launched from a command line and allows the execution of Ruby commands with immediate response, experimenting in real-time. It features command history, line editing capabilities, and job control, and is able to communicate directly as a shell script over the Internet and interact with a live server. It was developed by Keiju Ishitsuka.
Program usage:
irb (options ) (''programfile'' ) (''argument...'' )
Example usage:

irb(main):001:0> n = 5
=> 5
irb(main):002:0> def fact(n)
irb(main):003:1> if n <= 1
irb(main):004:2> 1
irb(main):005:2> else
irb(main):006:2
* n
* fact(n - 1)
irb(main):007:2> end
irb(main):008:1> end
=> :fact
irb(main):009:0> fact(n)
=> 120

==See also==

* Comparison of computer shells

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Interactive Ruby Shell」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.